body.shop-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(2, 11, 15, 0.94), rgba(31, 31, 31, 0.9)),
    url('../images/kayaking.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
}


/* ============================================
   Shop Page
   ============================================ */
.shop-shell {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 60px;
}

.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 28px;
  align-items: end;
  min-height: 360px;
  padding: 34px;
  border: 1px solid rgba(208, 162, 74, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(100deg, rgba(2, 11, 15, 0.92), rgba(2, 11, 15, 0.34)),
    url('../images/skydive.jpg');
  background-size: cover;
  background-position: center 42%;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.shop-hero h1 {
  max-width: 820px;
  color: #ffffff;
  font-family: Impact, "Arial Black", "Roboto Condensed", sans-serif;
  font-size: clamp(56px, 8vw, 118px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(190, 138, 45, 0.35);
}

.shop-hero p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.38;
}

.shop-cart-summary {
  padding: 22px;
  border: 1px solid rgba(208, 162, 74, 0.42);
  border-radius: 8px;
  background: rgba(2, 11, 15, 0.72);
  backdrop-filter: blur(10px);
  color: #ffffff;
  cursor: pointer;
  text-align: left;
}

.shop-cart-summary span,
.shop-cart-summary small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.shop-cart-summary strong {
  display: block;
  margin: 8px 0;
  color: #d0a24a;
  font-family: Impact, "Arial Black", "Roboto Condensed", sans-serif;
  font-size: 64px;
  line-height: 1;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(208, 162, 74, 0.24);
  border-radius: 8px;
  background: rgba(2, 11, 15, 0.78);
  backdrop-filter: blur(12px);
}

.shop-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-right: auto;
}

.shop-categories button,
.shop-sort select {
  min-height: 38px;
  border: 1px solid rgba(208, 162, 74, 0.42);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-categories button {
  padding: 0 14px;
}

.shop-categories button.is-active,
.shop-categories button:hover,
.shop-categories button:focus-visible {
  background: #d0a24a;
  color: #020b0f;
  outline: none;
}

.shop-sort {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-currency-control {
  margin-left: auto;
}

.shop-sort-control {
  margin-left: 4px;
}

.shop-sort select {
  min-width: 180px;
  padding: 0 12px;
}

.shop-sort option {
  background: #1f1f1f;
  color: #ffffff;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.product-card {
  border: 1px solid rgba(208, 162, 74, 0.24);
  border-radius: 8px;
  background: rgba(2, 11, 15, 0.88);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-card[hidden] {
  display: none;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(208, 162, 74, 0.76);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

.product-card__image {
  min-height: 250px;
  background-size: cover;
  background-position: center;
}

.product-card__image--jacket {
  background-image: linear-gradient(180deg, rgba(2, 11, 15, 0.05), rgba(2, 11, 15, 0.28)), url('../images/jacket.jpg');
}

.product-card__image--vest {
  background-image: linear-gradient(180deg, rgba(2, 11, 15, 0.05), rgba(2, 11, 15, 0.28)), url('../images/coffee.jpg');
}

.product-card__image--paddle {
  background-image: linear-gradient(180deg, rgba(2, 11, 15, 0.05), rgba(2, 11, 15, 0.28)), url('../images/energydrink.jpg');
}

.product-card__image--tee {
  background-image: linear-gradient(180deg, rgba(2, 11, 15, 0.05), rgba(2, 11, 15, 0.28)), url('../images/waterbottle.jpg');
}

.product-card__image--bottle {
  background-image: linear-gradient(180deg, rgba(2, 11, 15, 0.05), rgba(2, 11, 15, 0.28)), url('../images/athletepack.jpg');
}

.product-card__image--cap {
  background-image: linear-gradient(180deg, rgba(2, 11, 15, 0.05), rgba(2, 11, 15, 0.28)), url('../images/eliteathletepack.jpg');
}

.product-card__body {
  padding: 20px;
}

.product-card h2 {
  margin-top: 12px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-card p {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}

.product-card__bottom strong {
  color: #d0a24a;
  font-family: Impact, "Arial Black", "Roboto Condensed", sans-serif;
  font-size: 31px;
  line-height: 1;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-card__bottom button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  background: #d0a24a;
  color: #020b0f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.product-add-button {
  min-width: 112px;
}

.product-detail-button {
  border: 1px solid rgba(208, 162, 74, 0.5) !important;
  background: transparent !important;
  color: #d0a24a !important;
}

.product-card__bottom button:hover,
.product-card__bottom button:focus-visible {
  background: #e3b960;
  transform: translateY(-2px);
  outline: none;
}

.product-card__bottom button:disabled,
.modal-add-button:disabled {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.54) !important;
  cursor: not-allowed;
  transform: none;
}

.product-card__bottom button:disabled:hover,
.product-card__bottom button:disabled:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  transform: none;
}

.shop-modal,
.cart-drawer {
  position: fixed;
  z-index: 120;
}

.shop-modal {
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 11, 15, 0.62);
  backdrop-filter: blur(8px);
}

.shop-modal[hidden],
.cart-drawer[hidden] {
  display: none;
}

.shop-modal__panel,
.checkout-panel {
  position: relative;
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 26px;
  border: 1px solid rgba(208, 162, 74, 0.42);
  border-radius: 8px;
  background: rgba(2, 11, 15, 0.96);
  color: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.checkout-panel {
  display: block;
  max-width: 520px;
}

.shop-modal__close,
.cart-close {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
}

.shop-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  font-size: 24px;
}

.shop-modal__image {
  min-height: 420px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.shop-modal h2,
.cart-drawer h2,
.checkout-panel h2 {
  color: #ffffff;
  font-family: Impact, "Arial Black", "Roboto Condensed", sans-serif;
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
}

.shop-modal__description {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.shop-modal__price {
  display: block;
  margin-top: 20px;
  color: #d0a24a;
  font-family: Impact, "Arial Black", "Roboto Condensed", sans-serif;
  font-size: 42px;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 40px 70px 40px;
  gap: 6px;
}

.modal-purchase-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.modal-purchase-row .modal-add-button {
  margin-top: 0;
}

.quantity-control button,
.quantity-control input {
  height: 40px;
  border: 1px solid rgba(208, 162, 74, 0.42);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  text-align: center;
  font-weight: 900;
}

.cart-drawer {
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100vh;
  padding: 24px;
  background: rgba(2, 11, 15, 0.97);
  color: #ffffff;
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.42);
}

.cart-drawer__top,
.cart-total,
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-close {
  width: 36px;
  height: 36px;
  font-size: 22px;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.cart-item {
  padding: 12px 0;
  border-top: 1px solid rgba(208, 162, 74, 0.18);
  font-size: 13px;
  font-weight: 800;
}

.cart-item div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item button {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(208, 162, 74, 0.42);
  background: transparent;
  color: #d0a24a;
  cursor: pointer;
}

.cart-total {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(208, 162, 74, 0.32);
}

.cart-total strong {
  color: #d0a24a;
  font-size: 28px;
}

.checkout-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.checkout-form input {
  height: 42px;
  border: 1px solid rgba(208, 162, 74, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 0 12px;
}

.checkout-form button {
  height: 42px;
  border: 0;
  background: #d0a24a;
  color: #020b0f;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.checkout-message {
  margin-top: 18px;
  color: #d0a24a;
  font-weight: 900;
}

.cart-toast {
  position: fixed;
  z-index: 130;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(380px, calc(100% - 32px));
  padding: 14px 16px;
  border: 1px solid rgba(208, 162, 74, 0.62);
  border-radius: 8px;
  background: rgba(2, 11, 15, 0.97);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  color: #ffffff;
  animation: cart-toast-in 0.24s ease-out;
}

.cart-toast[hidden] {
  display: none;
}

.cart-toast__icon {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #d0a24a;
  color: #020b0f;
  font-weight: 900;
}

.cart-toast p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.cart-toast strong {
  font-size: 14px;
  text-transform: uppercase;
}

.cart-toast p span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.cart-toast__close {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.cart-toast__close:hover,
.cart-toast__close:focus-visible {
  color: #d0a24a;
  outline: none;
}

@keyframes cart-toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

